Overload | Description |
---|---|
NotContain(T,String,Object[]) | Asserts that the current collection does not contain the supplied unexpected item. |
NotContain(Expression<Func<T,Boolean>>,String,Object[]) | Asserts that the collection does not contain any items that match the predicate. |
NotContain(IEnumerable<T>,String,Object[]) | Asserts that the current collection does not contain the supplied items. Elements are compared using their System.Object.Equals(System.Object) implementation. |